home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Aug / di9808rs / PLATONIC.DPR < prev    next >
Encoding:
Text File  |  1998-03-18  |  215 b   |  14 lines

  1. program Platonic;
  2.  
  3. uses
  4.   Forms,
  5.   PlatoniF in 'PlatoniF.pas' {PlatonicForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TPlatonicForm, PlatonicForm);
  12.   Application.Run;
  13. end.
  14.